home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 09 - 1993 / 09.06 Jun 93 / C Shell XCMD / BGetTCLInfo.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-15  |  597 b   |  27 lines  |  [TEXT/KAHL]

  1. /*******************************************************************
  2.  * BGetTCLInfo.h
  3.  *
  4.  * Dialog class which prompts user for information and then return his input.
  5.  *  
  6.  * © copyright 1992, KSS Scientific Consultants.
  7.  *
  8.  ******************************************************************/
  9.  
  10. #pragma once
  11.  
  12. #include <CDLOGDirector.h>
  13.  
  14. class BGetTCLInfo : public CDLOGDirector
  15. {
  16. private:
  17.     Str255    fReturnStr;
  18.  
  19. public:    
  20.     void    IBGetTCLInfo(short DLOGid, CDirectorOwner *aSupervisor);
  21.  
  22.     virtual void    GetInfo(char *promptPtr, char *returnPtr);
  23.     
  24. protected:
  25.     virtual void    DoCommand(long theCommand);
  26. };
  27.